crypto/internal/nistec.P521Point.y (field)

23 uses

	crypto/internal/nistec (current package)
		p521.go#L24: 	x, y, z *fiat.P521Element
		p521.go#L31: 		y: new(fiat.P521Element).One(),
		p521.go#L39: 	p.y.SetBytes([]byte{0x1, 0x18, 0x39, 0x29, 0x6a, 0x78, 0x9a, 0x3b, 0xc0, 0x4, 0x5c, 0x8a, 0x5f, 0xb4, 0x2c, 0x7d, 0x1b, 0xd9, 0x98, 0xf5, 0x44, 0x49, 0x57, 0x9b, 0x44, 0x68, 0x17, 0xaf, 0xbd, 0x17, 0x27, 0x3e, 0x66, 0x2c, 0x97, 0xee, 0x72, 0x99, 0x5e, 0xf4, 0x26, 0x40, 0xc5, 0x50, 0xb9, 0x1, 0x3f, 0xad, 0x7, 0x61, 0x35, 0x3c, 0x70, 0x86, 0xa2, 0x72, 0xc2, 0x40, 0x88, 0xbe, 0x94, 0x76, 0x9f, 0xd1, 0x66, 0x50})
		p521.go#L47: 	p.y.Set(q.y)
		p521.go#L76: 		p.y.Set(y)
		p521.go#L101: 		p.y.Set(y)
		p521.go#L159: 	y := new(fiat.P521Element).Mul(p.y, zinv)
		p521.go#L204: 	y := new(fiat.P521Element).Mul(p.y, zinv)
		p521.go#L220: 	t1 := new(fiat.P521Element).Mul(p1.y, p2.y)  // t1 := Y1 * Y2
		p521.go#L222: 	t3 := new(fiat.P521Element).Add(p1.x, p1.y)  // t3 := X1 + Y1
		p521.go#L223: 	t4 := new(fiat.P521Element).Add(p2.x, p2.y)  // t4 := X2 + Y2
		p521.go#L227: 	t4.Add(p1.y, p1.z)                           // t4 := Y1 + Z1
		p521.go#L228: 	x3 := new(fiat.P521Element).Add(p2.y, p2.z)  // X3 := Y2 + Z2
		p521.go#L264: 	q.y.Set(y3)
		p521.go#L275: 	t1 := new(fiat.P521Element).Square(p.y)      // t1 := Y ^ 2
		p521.go#L277: 	t3 := new(fiat.P521Element).Mul(p.x, p.y)    // t3 := X * Y
		p521.go#L301: 	t0.Mul(p.y, p.z)                             // t0 := Y * Z
		p521.go#L310: 	q.y.Set(y3)
		p521.go#L318: 	q.y.Select(p1.y, p2.y, cond)